home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / NDK / NDK_1.3 / Include-Strip1.3 / include.h / workbench / startup.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-07-15  |  479 b   |  25 lines

  1. #ifndef    WORKBENCH_STARTUP_H
  2. #define    WORKBENCH_STARTUP_H
  3. #ifndef    EXEC_TYPES_H
  4. #include    "exec/types.h"
  5. #endif    !EXEC_TYPES_H
  6. #ifndef    EXEC_PORTS_H
  7. #include    "exec/ports.h"
  8. #endif    !EXEC_PORTS_H
  9. #ifndef    LIBRARIES_DOS_H
  10. #include    "libraries/dos.h"
  11. #endif    !LIBRARIES_DOS_H
  12. struct    WBStartup    {
  13. struct    Message    sm_Message;
  14. struct    MsgPort    *    sm_Process;
  15. BPTR    sm_Segment;
  16. LONG    sm_NumArgs;
  17. char    *    sm_ToolWindow;
  18. struct    WBArg    *    sm_ArgList;
  19. };
  20. struct    WBArg    {
  21. BPTR    wa_Lock;
  22. BYTE    *    wa_Name;
  23. };
  24. #endif
  25.